to extract out only year month from a date column in pandas

79

to extract out only year month from a date column in pandas -

df['month_year'] = df['date_column'].dt.to_period('M')

Comments

Submit
0 Comments